home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / qbbs / sx300h1.zip / PREINST.BAT < prev    next >
DOS Batch File  |  1992-07-22  |  688b  |  20 lines

  1. @echo off
  2.  
  3. :
  4. : This Batch file SHOULD be executed before the UNZIP process
  5. : This is basically a cleanup process of old Xpress Files.
  6. :
  7. echo Deleting old files.... Ignore DOS errors or File Not Found messages
  8.  
  9.    for %%x in (*. misc\*.* help\*.* bull\*.*) do del %%x > nul
  10.    for %%x in (hst*.bat def*.bat compress.bat *.hlp) do del %%x > nul
  11.    for %%x in (expand.bat recrep.bat sendopx.bat) do del %%x > nul
  12.    for %%x in (xpcvt5.exe xpct6.exe *.110) do del %%x > nul
  13.    for %%x in (order.frm xpmenu.bbs) do del %%x > nul
  14.    for %%x in (*.prm xpcfg.exe xpuser.exe) do del %%x > nul
  15.  
  16. : Beta testers would have this stuff
  17.  
  18.    for %%x in (*.raw *.ctl) do del %%x > nul
  19.  
  20.